home *** CD-ROM | disk | FTP | other *** search
- BreakEven Analysis,176,85
- rem (C) Copyright 1995 AlphaBlox Corporation
-
- BEGIN
- rem button attributes
- // memory
- FONT,Memory,16,0,0,0,600,0,0,0,0,1,2,2,34,Arial
- TEXTCOLOR,Memory,0,0,0
- KEYCOLOR,Memory,0,255,0
-
-
- // numbers
- FONT,Number,-17,0,0,0,900,0,0,0,0,1,2,2,34,Arial
- TEXTCOLOR,Number,255,255,255
- KEYCOLOR,Number,0,0,255
-
-
- // ops
- FONT,Ops,-17,0,0,0,900,0,0,0,0,1,2,2,34,Arial
- TEXTCOLOR,Ops,255,255,255
- KEYCOLOR,Ops,255,0,255
-
- // clear
- FONT,Clear,16,0,0,0,600,0,0,0,0,1,2,2,34,Arial
- TEXTCOLOR,Clear,0,0,0
- KEYCOLOR,Clear,255,255,0
-
- //enter
- FONT,Enter,17,0,0,0,700,0,0,0,0,1,2,2,34,Arial
- TEXTCOLOR,Enter,255,255,255
- KEYCOLOR,Enter,255,0,0
-
- //symbols
- BUTTONBITMAP,backspace,backspace,0
- BUTTONBITMAP,root,root,0
- BUTTONBITMAP,square,square,0
-
- //business
- FONT,Business,16,0,0,0,600,0,0,0,0,1,2,2,34,Arial
- TEXTCOLOR,Business,0,0,0
- KEYCOLOR,Business,192,192,192
-
-
-
-
- //custom
- FONT,Custom,16,0,0,0,600,0,0,0,0,1,2,2,34,Arial
- TEXTCOLOR,Custom,255,255,255
- KEYCOLOR,custom,0,128,128
-
-
- // Solver position and group
- FONT,Solver,-8,0,0,0,400,0,0,0,0,1,2,2,34,Ms Sans Serif
- TEXTCOLOR,Solver,255,255,255
- KEYCOLOR,Solver,0,0,255
- SOLVER,178,21
-
- //Global keyblox requirements
- MODE,4
- BASE,0
- FONT,Title,16,0,0,0,700,0,0,0,0,1,2,2,34,Arial
- TEXTCOLOR,Title,0,0,0
- FONT,Title2,16,0,0,0,700,0,0,0,0,1,2,2,34,Arial
- TEXTCOLOR,Title2,255,255,255
-
- BITMAP,0,0,1000,1000,calc_leaf,0
- BITMAP,22,22,9,9,AlphaBlox,0
-
- TEXT,36,23,90,8,Title,"AlphaBlox"
- TEXT,35,22,90,8,Title2,"AlphaBlox"
-
- TEXT,133,7,90,8,Title,"Break Even"
- TEXT,132,6,90,8,Title2,"Break Even"
-
- rem main keypad
- LCD,4,3,126,15
- BUTTON,4,21,15,11,Memory,"M+",1,memory plus
- BUTTON,4,33,15,11,Memory,"M-",1,memory minus
- BUTTON,4,45,15,11,Memory,"MR",1,memory recall
- BUTTON,4,57,15,11,Memory,"MC",1,memory clear
- BUTTON,4,69,15,11,Memory,"MS",1,memory store
-
- BUTTON,22,33,15,11,Number,"7",0,7
- BUTTON,22,45,15,11,Number,"4",0,4
- BUTTON,22,57,15,11,Number,"1",0,1
- BUTTON,22,69,15,11,Number,"0",0,0
- BUTTON,40,33,15,11,Number,"8",0,8
- BUTTON,40,45,15,11,Number,"5",0,5
- BUTTON,40,57,15,11,Number,"2",0,2
- BUTTON,40,69,15,11,Number,"+/-",1,plus minus
- BUTTON,58,33,15,11,Number,"9",0,9
- BUTTON,58,45,15,11,Number,"6",0,6
- BUTTON,58,57,15,11,Number,"3",0,3
- BUTTON,58,69,15,11,Number,".",0,.
-
- BUTTON,76,33,15,11,Ops,"/",1,divide
- BUTTON,76,45,15,11,Ops,"x",1,times
- BUTTON,76,57,15,11,Ops,"+",1,plus
- BUTTON,76,69,15,11,Ops,"-",1,minus
-
- BUTTON,76,21,15,11,backspace," ",1,backspace
- BUTTON,94,21,15,11,Clear,"CE",1,clear
- BUTTON,94,33,15,11,Business,"Tax",1,tax
- BUTTON,94,45,15,11,Business,"%",1,percentage
- BUTTON,94,57,15,11,Enter,"Ent",1,enter
- BUTTON,94,69,33,11,Enter,"=",1,equals
-
- BUTTON,112,21,15,11,Clear,"AC",1,clear all
- BUTTON,112,33,15,11,square," ",1,square
- BUTTON,112,45,15,11,root," ",1,square root
- BUTTON,112,57,15,11,Business,"1/x",1,invert
-
-
- rem Breakeven
- BUTTON,130,21,40,11,Custom,"Units sold",2,units sold=(&fixed costs&+&profit&)/(&unit price&-&variable costs&)
- BUTTON,130,33,40,11,Custom,"Unit price",2,unit price=&variable costs&+((&profit&+&fixed costs&)/&units sold&)
- BUTTON,130,45,40,11,Custom,"Variable costs",2,variable costs=&unit price&-((&profit&+&fixed costs&)/&units sold&)
- BUTTON,130,57,40,11,Custom,"Fixed costs",2,fixed costs=&units sold&*(&unit price&-&variable costs&)/&profit&
- BUTTON,130,69,40,11,Custom,"Profit",2,profit=&units sold&*(&unit price&-&variable costs&)-&fixed costs&
-
-
-
- END
-